home *** CD-ROM | disk | FTP | other *** search
/ Champak 138 / Volume 138 Aug 19 2011 - Damaged.iso / Games / shadez.swf / scripts / Shadez_TheBlackOperations_fla / Monkey_294.as < prev    next >
Text File  |  2011-08-19  |  2KB  |  66 lines

  1. package Shadez_TheBlackOperations_fla
  2. {
  3.    import Local.External.CURL;
  4.    import flash.display.MovieClip;
  5.    import flash.display.SimpleButton;
  6.    import flash.events.Event;
  7.    import flash.events.MouseEvent;
  8.    import flash.events.TimerEvent;
  9.    import flash.utils.Timer;
  10.    
  11.    public dynamic class Monkey_294 extends MovieClip
  12.    {
  13.        
  14.       
  15.       public var bTButton:SimpleButton;
  16.       
  17.       public var nTimer:Timer;
  18.       
  19.       public var mFinished:Boolean;
  20.       
  21.       public function Monkey_294()
  22.       {
  23.          super();
  24.          addFrameScript(0,frame1,115,frame116);
  25.       }
  26.       
  27.       public function e_ANIMATE(param1:TimerEvent) : void
  28.       {
  29.          this.nextFrame();
  30.          if(this.currentFrame == this.totalFrames)
  31.          {
  32.             nTimer.removeEventListener("timer",e_ANIMATE);
  33.             dispatchEvent(new Event("FINISHED"));
  34.          }
  35.       }
  36.       
  37.       public function e_GOTOURL(param1:MouseEvent) : void
  38.       {
  39.          CURL.Sponsor();
  40.       }
  41.       
  42.       function frame1() : *
  43.       {
  44.          stop();
  45.          mFinished = false;
  46.          bTButton.addEventListener(MouseEvent.MOUSE_UP,e_GOTOURL);
  47.          nTimer = new Timer(1000 / 24);
  48.          nTimer.addEventListener("timer",e_ANIMATE);
  49.       }
  50.       
  51.       public function START() : *
  52.       {
  53.          visible = true;
  54.          nTimer.start();
  55.       }
  56.       
  57.       function frame116() : *
  58.       {
  59.          if(true)
  60.          {
  61.             stop();
  62.          }
  63.       }
  64.    }
  65. }
  66.